@prefix :        <http://esipfed.org/ontologies/ToolMatch#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix daml:     http://www.daml.org/2001/03/daml+oil#> .
@prefix giss:     http://www.giss.nasa.gov/tools/> .
@prefix gdaac:   <http://disc.gsfc.nasa.gov/data/> .

:DataTool
     rdf:type owl:Class ;
     :worksWith :DataAccess ;
     :worksWith :DataCollection .

:DataCollection
     rdf:type owl:Class ;
     :hasDOI "xsd:string" ;
     :hasGcmdDif "xsd:string" ;
     :hasDataAccess :DataAccess .

:DataAccess
     rdf:type owl:Class .

:visualizes
     rdfs:subPropertyOf :worksWith .

:drawsMapsOf
     rdfs:subPropertyOf :visualizes .

gdaac:AIRX3STDv005
     rdf:type :DataCollection ;
     :hasDapAccess gdaac:AIRX3STDv005_DAP ;
     :hasNetcdfAccess gdaac:AIRX3STDv005_netCDF ;
     :hasGcmdDif "GES_DISC_AIRX3STD_V005" .

gdaac:AIRX3STDv005_DAP
     a :DataAccess .

gdaac:AIRX3STDv005_netCDF
     a :DataAccess .

giss:panoply
     :drawsMapsOf gdaac:AIRX3STDv005_DAP ;
     :drawsMapsOf gdaac:AIRX3STDv005_netCDF ;
     rdf:type :DataTool .
